home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD School House 10
/
CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso
/
mac
/
DOS
/
MISC
/
DOSUTL21
/
FMT.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-05-16
|
301b
|
17 lines
@echo off
if "%1"=="x" goto noformcmd
if "%1"=="X" goto noformcmd
format %1 %FORMCMD% %2 %3 %4 %5 %6 %7 %8 %9
if errorlevel 1 goto error
goto end
:noformcmd
shift
format %1 %2 %3 %4 %5 %6 %7 %8 %9
if errorlevel 1 goto error
goto end
:error
echo The disk could not be formatted!
:end